home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-12-10 | 446 b | 18 lines |
- # Makefile for compiling simple MiscKit examples
- # Written and Copyright (C) 1994, by Don Yacktman, all rights reserved.
-
- NAME = generate-makefile
- TARGET_ARCHS = m68k i386
- ARCHIFY = /usr/lib/arch_tool -archify_list
- ARCH_FLAGS = `$(ARCHIFY) $(TARGET_ARCHS)`
-
- all: $(NAME)
-
- $(NAME):
- cc -ObjC -O2 -pipe -L../../Source -I../../Headers -Wall $(ARCH_FLAGS) \
- -o $(NAME) $(NAME).m -all_load -lMiscKit -lNeXT_s
- strip $(NAME)
-
- clean:
- rm -rf $(NAME)
-